Background Image
Design and Skin Customization
Zachary Moonshine"]
this was the code i used at ning
body.page-live-chat:before{content:",";
background-image: url(...}
would this work and just change the url ?
That is basically what I've posted... it mighht look more like this though.
.single_bckgrnd {
background-image: url('{$jrElastic_img_url}/bckgrd.png');
background-attachment: fixed;
background-position: top center;
background-size: cover;
background-repeat: no-repeat;
}
You can change the class name "
.single_bckgrnd" to whatever you would like it to be. And you'll want make sure to change this "
{$jrElastic_img_url}/bckgrd.png" to your skin name and image name.
{$xxYOURSKINNAME_img_url}/yourimagename.png or yourimagename.jpg depending on what type of image you are using.
Then if you wrap code in a div with your class name.
<div class="single_bckgrnd">
More code here....
</div>
then you should see your background image.
updated by @douglas: 07/06/15 06:31:57AM